home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1998 #10 / CD 10 (Black) - 1998.iso / k-cf.dxr / Internal_16_UI Drag Snap to Sprite.ls < prev    next >
Encoding:
Text File  |  1998-09-03  |  1.7 KB  |  51 lines

  1. property snapDistance, snapTarget, xoffset, yoffset, tracking, boxtop, boxleft, boxright, boxbottom
  2.  
  3. on beginSprite me
  4.   set boxtop to the locV of sprite snapTarget - snapDistance
  5.   set boxbottom to the locV of sprite snapTarget + snapDistance
  6.   set boxleft to the locH of sprite snapTarget - snapDistance
  7.   set boxright to the locH of sprite snapTarget + snapDistance
  8. end
  9.  
  10. on prepareFrame me
  11.   if tracking then
  12.     if inbox(me, the mouseH - xoffset, the mouseV - yoffset) then
  13.       snap(me)
  14.     else
  15.       set the locH of sprite the spriteNum of me to the mouseH - xoffset
  16.       set the locV of sprite the spriteNum of me to the mouseV - yoffset
  17.     end if
  18.   end if
  19. end
  20.  
  21. on mouseDown me
  22.   set tracking to 1
  23.   set xoffset to the mouseH - the locH of sprite the spriteNum of me
  24.   set yoffset to the mouseV - the locV of sprite the spriteNum of me
  25. end
  26.  
  27. on mouseUp me
  28.   set tracking to 0
  29. end
  30.  
  31. on snap me
  32.   set the locH of sprite the spriteNum of me to the locH of sprite snapTarget
  33.   set the locV of sprite the spriteNum of me to the locV of sprite snapTarget
  34. end
  35.  
  36. on inbox me, X, Y
  37.   if (X < boxright) and (X > boxleft) and (Y < boxbottom) and (Y > boxtop) then
  38.     return 1
  39.   end if
  40.   return 0
  41. end
  42.  
  43. on getPropertyDescriptionList
  44.   set p_list to [#snapDistance: [#comment: "Snap Distance:", #format: #integer, #default: 8], #snapTarget: [#comment: "Target Sprite:", #format: #integer, #default: 1]]
  45.   return p_list
  46. end
  47.  
  48. on getBehaviorDescription
  49.   return "Cause a sprite to snap to the registration point of the target sprite while being dragged.  " & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Snap Distance - Enter the range in pixels within which snapping occurs." & RETURN & "ΓÇó Snap Target - Enter the channel number of the sprite to snap to."
  50. end
  51.